projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bff56d
)
fp16.c: Fix float_to_half() function call
author
Chun-wei Fan
<fanchunwei@src.gnome.org>
Wed, 29 Sep 2021 02:42:55 +0000
(10:42 +0800)
committer
Chun-wei Fan
<fanchunwei@src.gnome.org>
Thu, 30 Sep 2021 08:21:38 +0000
(16:21 +0800)
Correct the function being called.
gsk/ngl/fp16.c
patch
|
blob
|
history
diff --git
a/gsk/ngl/fp16.c
b/gsk/ngl/fp16.c
index 2f71820ce4e3d19791969e75aba66e43cb96715a..29e83527f342a1e03ab3db2a5e6eb1357bf41d23 100644
(file)
--- a/
gsk/ngl/fp16.c
+++ b/
gsk/ngl/fp16.c
@@
-146,7
+146,7
@@
float_to_half (const float *f, guint16 *h, int n)
if (have_f16c_msvc ())
float_to_half_f16c (f, h, n);
else
- float_to_half
4
_c (f, h, n);
+ float_to_half_c (f, h, n);
}
void